#cookielaw {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999999;
}

#cookielaw .cookie-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#cookielaw .cookielaw-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    display: block;
    padding: 0 25px;
}

#cookielaw .cookielaw-content p {
    margin: 0 0 5px 0;
    font-size: 16px;
    line-height: 24px;
    color: #1b394e;
    display: block;
}

#cookielaw span {
    line-height: 19px;
    color: #1b394e;
    font-size: 15px;
    display: inline-block;
    text-decoration: underline;
}

#cookielaw button,
#cookielaw .button {
    display: inline-block;
    background: #113954;
    text-align: center;
    font-size: 12px;
    box-shadow: 0;
    border: 0;
    margin: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    line-height: 10px;
    border-radius: 20px;
    cursor: pointer;
    color: #FFFFFF;
}

#cookielaw button.option-btn,
#cookielaw .button.option-btn {
    font-family: "Ford Antenna", sans-serif;
    padding: 15px 30px;
    margin: 12px 5px;
    font-size: 16px;
    width: auto;
    height: auto;
    border-radius: 0;
    background: #FFDC00;
    color: #111111;
    font-weight: bold;
}

#cookielaw button.option-btn.light-btn,
#cookielaw .button.option-btn.light-btn {
    background: #008CBA;
    color: #fff;
    font-weight: bold;
}

#cookielaw button.option-btn.light-btn:hover,
#cookielaw .button.option-btn.light-btn:hover {
    background: #024466;
}

#cookielaw button.option-btn:hover,
#cookielaw .button.option-btn:hover {
    background: #008CBA;
    color: #fff;
}

#cookielaw button.exit {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #1b394e;
    color: #fff;
    border-radius: 20px;
    font-size: 17px;
    width: 30px;
    height: 30px;
}

@media all and (max-width: 600px) {
    #cookielaw .cookielaw-content p {
        margin: 0 0 10px 0;
        line-height: 1.5;
        font-size: 16px;
    }

    #cookielaw button.option-btn {
        padding: 15px 20px;
        font-size: 15px;
    }

    #cookielaw button.exit {
        top: -10px;
        right: -10px;
    }
}